home *** CD-ROM | disk | FTP | other *** search
/ PC Home 109 / PC Home 109.iso / data1.cab / Program_Files / id001.dxr / 00038.ls < prev    next >
Encoding:
Text File  |  2001-03-02  |  924 b   |  29 lines

  1. on lastbit2
  2.   global cowboy1, cowboy2, cowboy3, cowboy4, cowboy5
  3.   if (cowboy1 = 1) and (cowboy2 = 0) and (cowboy3 = 0) and (cowboy4 = 0) and (cowboy5 = 0) then
  4.     set the visible of sprite 22 to 1
  5.     startTimer()
  6.     go(79)
  7.   end if
  8.   if (cowboy1 = 0) and (cowboy2 = 1) and (cowboy3 = 0) and (cowboy4 = 0) and (cowboy5 = 0) then
  9.     set the visible of sprite 23 to 1
  10.     startTimer()
  11.     go(79)
  12.   end if
  13.   if (cowboy1 = 0) and (cowboy2 = 0) and (cowboy3 = 1) and (cowboy4 = 0) and (cowboy5 = 0) then
  14.     set the visible of sprite 24 to 1
  15.     startTimer()
  16.     go(79)
  17.   end if
  18.   if (cowboy1 = 0) and (cowboy2 = 0) and (cowboy3 = 0) and (cowboy4 = 1) and (cowboy5 = 0) then
  19.     set the visible of sprite 25 to 1
  20.     startTimer()
  21.     go(79)
  22.   end if
  23.   if (cowboy1 = 0) and (cowboy2 = 0) and (cowboy3 = 0) and (cowboy4 = 0) and (cowboy5 = 1) then
  24.     set the visible of sprite 26 to 1
  25.     startTimer()
  26.     go(79)
  27.   end if
  28. end
  29.